download and run exe c# 1 button

88

download and run exe c# 1 button -

string str = @"C:\Users\Documents\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe";
    Process process = new Process();
    process.StartInfo.FileName = str;
    process.Start();

Comments

Submit
0 Comments